home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Acao / BlueCustom.swf / scripts / frame_630 / PlaceObject2_319_162 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Text File  |  2008-09-25  |  1KB  |  46 lines

  1. onClipEvent(enterFrame){
  2.    this._x += _global.xgo;
  3.    this._y += _global.ygo;
  4.    if(this._y > _root.player._y - 500)
  5.    {
  6.       yit = Math.floor(Math.random() * 371) + 30;
  7.       if(this._x < -200)
  8.       {
  9.          this._x = 900;
  10.          this._y = _root.depth._y - 600 - yit;
  11.          die = 1;
  12.          this.gotoAndStop(1);
  13.       }
  14.       if(this._x > 1000)
  15.       {
  16.          this._x = -100;
  17.          this._y = _root.depth._y - 600 - yit;
  18.          die = 1;
  19.          this.gotoAndStop(1);
  20.       }
  21.       if(die == 1)
  22.       {
  23.          myRadians = Math.atan2(this._y - _root.player._y,this._x - _root.player._x);
  24.          xleg = this._x - _root.player._x;
  25.          yleg = this._y - _root.player._y;
  26.          scared = Math.sqrt(xleg * xleg + yleg * yleg);
  27.          if(scared < 50)
  28.          {
  29.             this._y -= 1;
  30.          }
  31.          this._x -= 4;
  32.       }
  33.       if(_root.player.eat.hitTest(this.eat))
  34.       {
  35.          die = 0;
  36.          this.gotoAndPlay("die");
  37.          scoreity = 200;
  38.          _root.tools.instascore.text = "+" + scoreity;
  39.          _root.tools.instblock._alpha = 0;
  40.          _global.scoreit = _global.scoreit * 1 + scoreity;
  41.          _global.boost += scoreity / 30;
  42.          _root.tools.bar1.gotoAndStop(_global.boost + 1);
  43.       }
  44.    }
  45. }
  46.